github.com/refraction-networking/utls.clientHelloMsg.pskIdentities (field)

21 uses

	github.com/refraction-networking/utls (current package)
		handshake_client.go#L540: 	hello.pskIdentities = []pskIdentity{identity}
		handshake_client_tls13.go#L357: 	if len(hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L365: 			hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
		handshake_client_tls13.go#L379: 			hello.pskIdentities = nil
		handshake_client_tls13.go#L392: 			if len(hs.hello.pskIdentities) > 0 {
		handshake_client_tls13.go#L539: 	if int(hs.serverHello.selectedIdentity) >= len(hs.hello.pskIdentities) {
		handshake_client_tls13.go#L544: 	if len(hs.hello.pskIdentities) != 1 || hs.session == nil {
		handshake_messages.go#L97: 	pskIdentities           []pskIdentity
		handshake_messages.go#L345: 	if len(m.pskIdentities) > 0 { // pre_shared_key must be the last extension
		handshake_messages.go#L350: 				for _, psk := range m.pskIdentities {
		handshake_messages.go#L682: 				m.pskIdentities = append(m.pskIdentities, psk)
		handshake_messages.go#L743: 		pskIdentities:                    slices.Clone(m.pskIdentities),
		handshake_server_tls13.go#L161: 		if len(hs.clientHello.pskIdentities) == 0 {
		handshake_server_tls13.go#L348: 	if len(hs.clientHello.pskIdentities) != len(hs.clientHello.pskBinders) {
		handshake_server_tls13.go#L352: 	if len(hs.clientHello.pskIdentities) == 0 {
		handshake_server_tls13.go#L356: 	for i, identity := range hs.clientHello.pskIdentities {
		u_conn.go#L187: 			uconn.sessionController.initPskExt(session, earlySecret, binderKey, hello.pskIdentities)
		u_public.go#L421: 			pskIdentities:           PskIdentities(chm.PskIdentities).ToPrivate(),
		u_public.go#L472: 			PskIdentities:                    pskIdentities(chm.pskIdentities).ToPublic(),